home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Max Calendar 2002
/
Max Calendar 2002.iso
/
pc
/
Data
/
intro.dxr
/
00011_DRAG IMAGE VERTICALE.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-10-17
|
286 b
|
13 lines
on mouseDown
global gMinZV, gMaxZV
DeltaV = the mouseV - the locV of sprite 117
repeat while the stillDown
cursor(SettaCursore(3))
V = the mouseV - DeltaV
V = max(V, gMinZV)
V = min(V, gMaxZV)
set the locV of sprite 117 to V
updateStage()
end repeat
end